HTMLify
style.css
Views: 14 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | * { box-sizing: border-box; margin: 0; padding: 0; } html, body { width: 100%; height: 200vh; background: #000; } .container { display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; } .sub-headings { max-width: 700px; text-align: center; margin: 20px; font-family: sans-serif; line-height: 30px; } h1 { margin-top: 50px; color: #fff; text-align: center; font-size: 4rem; margin-bottom: 6rem; } .arrow { width: 45px; height: 45px; border: 2px solid white; border-radius: 50%; position: absolute; bottom: 30px; margin: auto; transition: ease-in; animation: bounce 1.5s infinite; } .arrow:before { content: ""; position: absolute; top: 11px; left: 13px; width: 12px; height: 12px; border-left: 2px solid #fafafa; border-bottom: 2px solid #fafafa; transform: rotate(-45deg); } @keyframes bounce { 0% { transform: translate(0); } 20% { transform: translateY(15px); } 40% { transform: translate(0); } } @-webkit-keyframes bounce { 0% { transform: translate(0); } 20% { transform: translateY(15px); } 40% { transform: translate(0); } } .fade-in { opacity: 1; transition: 1s all ease-in; } .fade-out { opacity: 0; transition: 1s all ease-out; } |